home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 June / PSL Monthly Shareware CD-ROM (June 1994) (Public Software Library).bin / am.zip / CSHOW.AM < prev    next >
Text File  |  1994-02-28  |  874b  |  41 lines

  1. ; =======================================
  2. ; CSHOW.AM
  3. ;
  4. ; AutoMate v2.0 Demonstration Script File
  5. ; =======================================
  6.  
  7. ; -------------------------
  8. ; Launch the CSHOW program.
  9. ; -------------------------
  10.  
  11. launch "c:\borlandc\cshow\cshow.exe"
  12.  
  13. ; ---------------------
  14. ; Initialize variables.
  15. ; ---------------------
  16.  
  17. set row = 3
  18. set col = 0
  19.  
  20. ; -------------
  21. ; Begin search.
  22. ; -------------
  23.  
  24. loop            key "{DOWN}"
  25.                 goif scrcmp (row, col, "COWBOY") found
  26.                 incr row
  27.                 goif not row > 20 loop
  28.  
  29.                 set row = 3
  30.                 incr col,20
  31.                 goif not col > 60 loop
  32.  
  33.                 key "{ESC}"
  34.                 key "{ESC}"
  35.                 abort
  36.  
  37. found           key "{ENTER}"
  38.                 delay 1
  39.                 key " "
  40.                 abort
  41.